home *** CD-ROM | disk | FTP | other *** search
/ Transformers: Revenge of …he Game: Press Kit (USA) / Transformers - Revenge of the Fallen - The Game - Press Kit (USA).bin / Transformers.swf / scripts / fl / video / SkinErrorEvent.as < prev    next >
Text File  |  2009-06-19  |  570b  |  23 lines

  1. package fl.video
  2. {
  3.    import flash.events.ErrorEvent;
  4.    import flash.events.Event;
  5.    
  6.    public class SkinErrorEvent extends ErrorEvent
  7.    {
  8.       
  9.       public static const SKIN_ERROR:String = "skinError";
  10.        
  11.       
  12.       public function SkinErrorEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:String = "")
  13.       {
  14.          super(param1,param2,param3,param4);
  15.       }
  16.       
  17.       override public function clone() : Event
  18.       {
  19.          return new SkinErrorEvent(type,bubbles,cancelable,text);
  20.       }
  21.    }
  22. }
  23.